home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19971216-19980424 / 000091_news@newsmaster….columbia.edu _Wed Jan 14 09:44:17 1998.msg < prev    next >
Internet Message Format  |  1998-04-22  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA27243
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 14 Jan 1998 09:44:16 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA17154
  7.     for kermit.misc@watsun; Wed, 14 Jan 1998 09:44:16 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: escape to command mode
  12. Date: 14 Jan 1998 14:44:15 GMT
  13. Organization: Columbia University
  14. Lines: 22
  15. Message-ID: <69iivv$hsn$1@apakabar.cc.columbia.edu>
  16. References: <884711083.816316424@dejanews.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8264
  19.  
  20. In article <884711083.816316424@dejanews.com>,  <david2020@hotmail.com> wrote:
  21. : I'm writing a C-kermit script to run test calls (login, password, etc.)
  22. : I want to escape to the modem's command mode by using +++ to get some
  23. : modem statistics (e.g. ATI6) while the connection is still up.
  24. : Any thoughts on how I would accomplish this using C-Kermit?
  25. : By the way,  I tried OUTPUT +++\13,  did not work.
  26. : or  OUTPUT \L
  27. :     OUTPUT +++\13
  28. :     OUTPUT \L;   did not work either.
  29. The modem's escape sequence probably requires a 1-second pause before and
  30. after; this is the famous Hayes-patented "guard time".  So:
  31.  
  32.   pause 1
  33.   output +++
  34.   pause 1
  35.  
  36. - Frank